home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / pm-utils / sleep.d / 000record next >
Encoding:
Text File  |  2009-04-07  |  232 b   |  17 lines

  1. #!/bin/sh
  2. #
  3. # Record that we have a suspend/hibernate in progress.
  4. #
  5. . "${PM_FUNCTIONS}"
  6.  
  7. LOGFILE="/var/lib/pm-utils/status"
  8.  
  9. case "$1" in
  10.     hibernate|suspend)
  11.         echo "$1" >"$LOGFILE"
  12.         ;;
  13.     thaw|resume) 
  14.         rm -f "$LOGFILE"
  15.         ;;
  16. esac
  17.